home *** CD-ROM | disk | FTP | other *** search
- /* Events.c prototypes for Reminder */
-
- /* $Id: Events.h,v 1.3 1993/04/08 20:12:06 Matti_Rintala Exp $ */
-
- #ifndef EVENTS_H
- #define EVENTS_H
-
- #include <exec/types.h>
- #include <exec/lists.h>
-
- struct List *InitEvents(void);
-
- void NewEvent(void);
- struct List *AddEvent(void);
- int GetEvent(void);
- struct List *UpdateEvent(void);
- struct List *RemoveEvent(void);
-
- int LoadEvents(const char *filename);
- int SaveEvents(const char *filename);
-
- #endif
-